home *** CD-ROM | disk | FTP | other *** search
- /* #[info: */
- /************************************************************************
- * *
- * #### #### ##### ##### ##### # #### *
- * # # # # # # # # # # *
- * # # # # # # # # # # *
- * ### # ## ### ##### ### ####### # # *
- * # # # # # # # # # # # *
- * # # # # # # # # # # # *
- * #### #### # # # ##### # # #### *
- * *
- * Jan van der Steen *
- * *
- * Centre for Mathematics and Computer Science *
- * Amsterdam, the Netherlands *
- * *
- *----------------------------------------------------------------------*
- * File : sgfread.h *
- * Purpose : Read and store a Smart Go Format file *
- * Version : 1.1 *
- * Modified: 11/8/92 17:00:54 *
- * Author : Jan van der Steen (jansteen@cwi.nl) *
- ************************************************************************/
- /* #]info: */
-
- #ifndef __SGFREADH
- #define __SGFREADH
-
- /* #[include: */
-
- #include <stdio.h>
- #include "gogame.h"
-
- /* #]include: */
- /* #[prototype: */
-
- #ifdef __STDC__
- # define PROTO(s) s
- #else
- # define PROTO(s) ()
- #endif
-
- GOGAME * sgf_read PROTO((FILE *fp));
-
- #undef PROTO
-
- /* #]prototype: */
-
- #endif
-